home *** CD-ROM | disk | FTP | other *** search
- package com.extensibility.saf.dom;
-
- import com.extensibility.saf.SchemaAdjunct;
-
- public abstract class AssociatedObject {
- private AssociatedDocument associatedDocument;
-
- public AssociatedObject(AssociatedDocument var1) {
- this.associatedDocument = var1;
- }
-
- public AssociatedDocument getAssociatedDocument() {
- return this.associatedDocument;
- }
-
- protected void setAssociatedDocument(AssociatedDocument var1) {
- this.associatedDocument = var1;
- }
-
- protected SchemaAdjunct getSchemaAdjunct() {
- return this.associatedDocument.getDocSchemaAdjunct();
- }
- }
-